home *** CD-ROM | disk | FTP | other *** search
/ The Games Machine 76 / XENIATGM66.iso / Indiana Jones / Indiana Jones.exe / RESOURCE / PREVIEW.GOB / cog_item_gascan.cog < prev    next >
Text File  |  1999-11-15  |  789b  |  57 lines

  1. # Jones 3D Cog Script
  2. #
  3. # item_GasCan.cog
  4. #
  5. # [RT]
  6. #
  7. # (C) 1998 LucasArts Entertainment Company LLC. All Rights Reserved
  8. #
  9. # ===================================================================
  10.  
  11. symbols
  12.  
  13. message    touched
  14. message    taken
  15.  
  16. thing    player    local
  17.  
  18. int        bin=66    local
  19.  
  20. end
  21.  
  22. # ===================================================================
  23.  
  24. code
  25.  
  26. touched:
  27.  
  28.     player = GetSourceRef();
  29.     
  30.     if (GetInv(player, bin) < GetInvMax(player, bin))
  31.     {
  32.         TakeItem(GetSenderRef(), player);
  33.     }
  34.  
  35.     return;
  36.  
  37. # -------------------------------------------------------------------
  38.  
  39. taken:
  40.  
  41.     player = GetSourceRef();
  42.     
  43.     ChangeInv(player, bin, 1.0);
  44.     SetInvAvailable(player, bin, 1);
  45.     JonesInvItemChanged(bin);
  46.     
  47.     return;
  48.  
  49. end
  50.  
  51.  
  52.  
  53.  
  54.  
  55.  
  56.  
  57.